triggers: Quiet GConf trigger
authorColin Walters <walters@verbum.org>
Tue, 19 Jun 2012 19:03:16 +0000 (15:03 -0400)
committerColin Walters <walters@verbum.org>
Tue, 19 Jun 2012 19:03:16 +0000 (15:03 -0400)
The default is just way, way too verbose.

src/triggers/triggers.d/0050gconf.trigger

index 03b73fb730ecb9edd6732f78c6364b796f05b364..f7a7c380ea78718542359d97a406cfd32976c81c 100755 (executable)
@@ -22,6 +22,8 @@ if test -x "$(which gconftool-2 2>/dev/null)"; then
     GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
     export GCONF_CONFIG_SOURCE
     for f in /etc/gconf/schemas/*.schemas; do
-       gconftool-2 --makefile-install-rule "$f"
+       # The default output is extremely chatty...redirect to
+       # /dev/null here until there's a way to make it quieter.
+       gconftool-2 --makefile-install-rule "$f" >/dev/null
     done
 fi